.GlassMenu {
  gap: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
}

/* .GlassMenu.active {
  opacity: 1;
  pointer-events: all;
  transition: all 250ms 300ms;
} */
.building-overview,
.room-overview {
  width: 78%;
  max-width: 1200px;
  max-height: 92%;
  min-height: 92%;
  height: 92%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  background: #8080804d;
  border-radius: 46px;
  box-shadow: inset 0 0 0 0.4px white;
  backdrop-filter: blur(5px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  display: inline-flex;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: 500ms ease-in-out;
}

#View-Area,
.GlassMenu {
  position: absolute;
  /* z-index: var(--z-index-5); */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 250ms 300ms;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.px25 {
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
}

.Corners {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: var(--z-index-4) !important;
  pointer-events: none;
}

.fullScreen {
  opacity: 0;
  transition: all 100ms;
  pointer-events: none;
  z-index: var(--z-index-2);
}
.fullScreen.active {
  pointer-events: all;
  opacity: 1;
}

button {
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

button.Cylindrical {
  width: 126px;
  height: 39px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  cursor: default;
  transition: all 200ms;
}

button.Circular {
  padding: 20px;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: default;
  transition: all 200ms;
}

button.Gold {
  background: #ffdd2a;
  box-shadow: 10px 10px 25px rgba(255, 221, 42, 0.4);
  color: black;
  font-size: 14px;
  font-weight: 600;
}

button.Circular.Gold {
  box-shadow: 5px 5px 4px #ffe55b inset;
}

button.Circular.Transparent {
  border: 1px rgba(255, 255, 255, 0) solid;
}

/* button.Circular.Transparent:hover {
  border: 1px rgba(255, 255, 255, 0.6) solid;
  background: transparent;

} */

button.Gold:hover {
  background: #ffc700;
}

button.Transparent {
  border: 1px rgba(255, 255, 255, 0.6) solid;
  color: white;
}

button.Transparent:hover {
  background: white;
  color: black;
}

button.custom1 {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 32px;
  font-size: 16px;
  font-weight: 600;
  word-wrap: break-word;
  border: none;
  transition: all 200ms;
  border: 1px rgba(255, 255, 255, 0.6) solid;
  color: white;
}

button.custom1.active {
  background: white;
  color: black;
  pointer-events: none;
}

button.custom1 {
  background: transparent;
  color: white;
  border: 1px rgba(255, 255, 255, 0) solid;
}

button.custom1:hover {
  border: 1px rgba(255, 255, 255, 0.6) solid;
  cursor: default;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.GlassFrame {
  padding: 17px 28px;
  background: linear-gradient(
    117deg,
    rgba(111.66, 111.66, 111.66, 0.2) 0%,
    rgba(52.06, 52.06, 52.06, 0.16) 100%
  );
  border-radius: 40px;
  overflow: hidden;
  border: 1px rgba(255, 255, 255, 0.6) solid;
  backdrop-filter: blur(5px);
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  display: inline-flex;
}

.GlassDropDown {
  flex-direction: column;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 39px;
  padding-bottom: 39px;
  background: linear-gradient(
    117deg,
    rgba(111.66, 111.66, 111.66, 0.2) 0%,
    rgba(52.06, 52.06, 52.06, 0.16) 100%
  );
  border-radius: 40px;
  border: 1px rgba(255, 255, 255, 0.6) solid;
  backdrop-filter: blur(5px);
  justify-content: flex-start;
  align-items: center;
  gap: 65px;
  display: flex;
}

.animated-tooltip {
  position: absolute;
  top: 60%;
  margin-top: 10px;
  padding: 0.55rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  color: #000;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  transition: all 300ms 500ms ease-in-out;
}

.has-tooltip {
  position: relative;
}

.has-tooltip:hover .animated-tooltip {
  top: 100%;
  opacity: 0.9;
}

.roomBox {
  padding: 12px;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;
  display: inline-flex;
  cursor: default;
}

.flashing {
  -webkit-animation: flash 500ms forwards;
  animation: flash 500ms forwards;
}

.rooms-overview-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.rooms-overview {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78%;
  max-width: 1200px;
  height: 92%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  background: #8080804d;
  border-radius: 46px;
  box-shadow: inset 0 0 0 0.4px white;
  backdrop-filter: blur(5px);
}

.RoomPic {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: right;
}

.hvr-3 {
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 250ms linear;
}

.hvr-3:hover {
  box-shadow: 0px 2px 0 var(--primary-clr), 2px 4px 6px var(--primary-clr);
  transition: all 150ms linear;
}

.hvr-4 {
  border-radius: 0;
  position: relative;
}

.hvr-4:after,
.hvr-4:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border: 0px solid #fff;
  transition: all 1s;
}
.hvr-4:after {
  top: -4px;
  left: -4px;
  border: 0px solid var(--primary-clr);
  border-top: 1px solid var(--primary-clr);
  border-left: 1px solid var(--primary-clr);
}
.hvr-4:before {
  bottom: -1px;
  right: -1px;
  border: 0px solid var(--primary-clr);
  border-bottom: 1px solid var(--primary-clr);
  border-right: 1px solid var(--primary-clr);
}
.hvr-4:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.hvr-4:hover:before,
.hvr-4:hover:after {
  width: 100%;
  height: 100%;
}

.OccupantPic {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 9999px;
  border: 0.1px white solid;
}

.popup_screen.passage {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.passage.full {
  width: 100%;
  height: 100%;
}

.popup_screen.passage .content {
  padding: 0 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.popup_screen.passage .content .inner {
  max-width: 800px;
}

.passage a {
  color: var(--color-2);
  transition: all 0.3s ease-in-out;
}

.passage a:focus,
.passage a:hover,
.passage a:active {
  color: var(--primary-clr);
}

.passage a:hover,
a:active {
  outline: 0;
}

.passage .inner p {
  line-height: 1.5 !important;
  margin-bottom: var(--vspace-1);
  font-size: var(--base-size);
  text-rendering: optimizeLegibility;
}

.passage .content .inner.translate {
  padding: 60px 20px;
}

.popup_screen.passage .pic.active {
  transform: scale(1) translateY(100px) translateX(650px);
}
@media screen and (max-width: 1550px) {
  .popup_screen.passage .pic.active {
    transform: scale(1) translateY(100px) translateX(450px);
  }

  .popup_screen.passage .inner.translate {
    position: relative;
    transform: translateX(-150px);
  }
}

.pop {
  opacity: 0;
  pointer-events: none;
  transition: all 300ms;
}
.pop.active {
  opacity: 1;
  pointer-events: all;
  transition: all 300ms 300ms;
}

.pop.noTS {
  opacity: 0;
  pointer-events: none;
  transition: all 0ms;
}
.pop.noTS.active {
  opacity: 1;
  pointer-events: all;
  transition: all 0ms;
}

.popup {
  z-index: var(--z-index-3);
  background: var(--secondary-clr);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms 300ms;
  image-rendering: auto;
}

.popup.active {
  opacity: 1;
  pointer-events: all;
  transition: all 300ms 300ms;
}

.popup2 {
  z-index: var(--z-index-3);
  opacity: 0;
  pointer-events: none;
  transition: all 300ms 300ms;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  position: fixed;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.popup2.active {
  opacity: 1;
  pointer-events: all;
  transition: all 300ms 300ms;
}

.custom-class1 {
  font-size: 20px;
  color: white;
  background: #031216;
  width: 100%;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  padding-left: 48px;
  padding-right: 48px;
}

.popup h3,
.popup a {
  cursor: pointer;
  transition: all 150ms;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 20px;
  display: block;
}
.popup h3:hover,
.popup a:hover {
  background: var(--primary-clr);
  color: var(--secondary-clr);
}
.popup a,
.popup a {
  padding: 0;
}

.popup h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.char-box {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(241, 224, 172, 0.2) 0%,
    rgba(241, 224, 172, 0) 100%
  );
  border: 1px #f1e0ac solid;

  font-size: inherit;
  text-rendering: optimizeLegibility;
  margin-bottom: var(--vspace-1);

  padding-right: 35px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 17px;
  padding-bottom: 17px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 11px;
  display: inline-flex;
}

.char-image {
  width: 70px;
  height: 70px;
  border-radius: 9999px;
  margin-bottom: 0 !important;
}

.char-name {
  font-size: 21px;
  line-height: 34.3px !important;
  font-weight: 500;
}

.char-text {
  align-self: stretch;
  font-size: 18px;
  line-height: 28.6px !important;
}

#regularPassage {
  background: #060606;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 18px;
}

#regularPassage *,
#ClickArea,
.popup1 *,
.popup2 *,
.game_roulette * {
  image-rendering: auto;
}

#regularPassage p {
  font-size: 18px;
  line-height: 1.5 !important;
}

#regularPassage .content {
  background: #060606;
}

#regularPassage .popup_screen {
  background: #060606;
  width: 100%;
  height: 100%;
  overflow: auto;
  max-width: 1200px;
}

#regularPassage .content {
  padding-left: 50px;
  padding-right: 50px;
  max-width: 800px;
}

#regularPassage .content img {
  margin-bottom: 32px;
}

#regularPassage .content p {
  margin-bottom: 32px;
}

#regularPassage .content h2 {
  margin-top: 40px !important;
  margin-bottom: 40px;
}

#regularPassage .content h3 {
  margin-bottom: 40px;
  font-size: 32px;
}

.storyLink {
  font-size: 20px;
  text-decoration: underline;
  transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: inline-block !important;
}

.storyLink:hover,
.storyLink:focus,
.storyLink:active {
  color: var(--primary-clr);
  transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

:root {
  --story-color: white;
  --story-font-weight: 300;
  --story-text-size: 16px;
  --story-h1-size: 45px;
  --story-h3-size: 32px;
  --story-char-weight-1: 600;
  --story-char-weight-2: 500;
  --story-font: "Nunito Sans";
}

.customer1 {
  color: white !important;
  font-weight: var(--story-char-weight-2) !important;
}

.Grayson {
  color: #41ae3d !important;
  font-weight: var(--story-char-weight-2) !important;
}

.Boss {
  color: #0033ff !important;
  font-weight: var(--story-char-weight-2) !important;
}

.Enforcer {
  color: #ff4c4c !important;
  font-weight: var(--story-char-weight-2) !important;
}

.Guardian {
  color: #4c9fff !important;
  font-weight: var(--story-char-weight-2) !important;
}

.Magician {
  color: #ffdd4c !important;
  font-weight: var(--story-char-weight-2) !important;
}

.Manipulator {
  color: #b14cff !important;
  font-weight: var(--story-char-weight-2) !important;
}

.Intellect {
  color: #4cff8f !important;
  font-weight: var(--story-char-weight-2) !important;
}

.Healer {
  color: #4cffff !important;
  font-weight: var(--story-char-weight-2) !important;
}

.chatImage {
  width: calc(100% - 2px);
  height: auto;
  border-radius: 14px;
}

.msgr-popup .ChannelList {
  width: 360px;
  height: 100%;
  background: #17191c;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.msgr-popup .ChannelList .Header {
  width: 360px;
  height: 60px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 11px;
  padding-right: 16px;
  background: #17191c;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}

.msgr-popup .ChannelList .Header .MessageInput {
  width: 100%;
  align-self: stretch;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 8px;
  background: #17191c;
  border-radius: 20px;
  border: 1px #272a30 solid;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.msgr-popup .ChannelList .Header .MessageInput .AccessoriesTextContainer {
  width: 100%;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
}

.msgr-popup
  .ChannelList
  .Header
  .MessageInput
  .AccessoriesTextContainer
  .TextCursor {
  justify-content: flex-start;
  align-items: flex-end;
  display: inline-flex;
}

.msgr-popup
  .ChannelList
  .Header
  .MessageInput
  .AccessoriesTextContainer
  .TextCursor
  .TypeYourMessage {
  color: #747881;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.msgr-popup .ChannelList .Channels {
  align-self: stretch;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.msgr-popup .ChannelList .Channels .Channel {
  position: relative;
  align-self: stretch;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 11.5px;
  padding-bottom: 11.5px;
  background: #17191c;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  transition: 0.3s ease;
  cursor: default;
}
.msgr-popup .ChannelList .Channels .Channel:not(.active):hover {
  background: #2a2c30;
  transition: 0.3s ease;
}

.msgr-popup .ChannelList .Channels .Channel .NotificationBadge {
  position: absolute;
  top: 8px;
  left: 323px;
  padding: 7.5px;
  background: #ff3742;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  min-width: 25px;
}

.msgr-popup
  .ChannelList
  .Channels
  .Channel
  .NotificationBadge
  .NotificationBadgeText {
  text-align: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 7px;
  word-wrap: break-word;
}

.msgr-popup .ChannelList .Channels .Channel .Avatar {
  width: 49px;
  height: 49px;
  position: relative;
}

.msgr-popup .ChannelList .Channels .Channel .Avatar .AvatarMask {
  width: 49px;
  height: 49px;
  border-radius: 9999px;
}

.msgr-popup .ChannelList .Channels .Channel .Avatar .Online {
  width: 15.75px;
  height: 15.75px;
  left: 37.62px;
  top: 0.88px;
  position: absolute;
}

.msgr-popup .ChannelList .Channels .Channel .Text {
  flex: 1 1 0;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  display: inline-flex;
}

.msgr-popup .ChannelList .Channels .Channel .Text .AccessoriesList1stRow {
  width: 287px;
  height: 20px;
  padding-right: 181px;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
}

.msgr-popup
  .ChannelList
  .Channels
  .Channel
  .Text
  .AccessoriesList1stRow
  .ChannelCharName {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  word-wrap: break-word;
}

.msgr-popup .ChannelList .Channels .Channel .Text .NdRow {
  width: 287px;
  height: 16px;
  position: relative;
}

.msgr-popup
  .ChannelList
  .Channels
  .Channel
  .Text
  .NdRow
  .AccessoriesList2ndRow {
  width: 238px;
  height: 18px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-right: 56px;
  left: 0px;
  top: -1px;
  position: absolute;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
}

.msgr-popup
  .ChannelList
  .Channels
  .Channel
  .Text
  .NdRow
  .AccessoriesList2ndRow
  .LastMessage {
  color: #747881;
  font-size: 14px;
  font-weight: 400;
  word-wrap: break-word;
}

.msgr-popup .ChannelList .Channels .Channel .Text .NdRow .AccessoriesTimestamp {
  height: 16px;
  max-width: 62px;
  left: 228px;
  top: 0px;
  position: absolute;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
}

.msgr-popup
  .ChannelList
  .Channels
  .Channel
  .Text
  .NdRow
  .AccessoriesTimestamp
  .Timestamp {
  text-align: right;
  color: #747881;
  font-size: 14px;
  font-weight: 400;
  word-wrap: break-word;
}

.msgr-popup .msger .Header {
  width: 100%;
  height: 60px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 9px;
  padding-bottom: 9px;
  background: #17191c;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  display: inline-flex;
}

.msgr-popup .msger .Header .AccessoriesAvatar {
  width: 49px;
  height: 49px;
  position: relative;
}

.msgr-popup .msger .Header .AccessoriesAvatar .AvatarMask {
  width: 49px;
  height: 49px;
  border-radius: 9999px;
}

.msgr-popup .msger .Header .AccessoriesAvatar .Online {
  width: 15.75px;
  height: 15.75px;
  left: 37.62px;
  top: 0.88px;
  position: absolute;
}

.msgr-popup .msger .Header .Frame {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  display: inline-flex;
}

.msgr-popup .msger .Header .Frame .HeaderTitle {
  align-self: stretch;
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  word-wrap: break-word;
}

.msgr-popup .msger-inputArea {
  height: 56px;
  padding: 8px;
  background: #17191c;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8px;
  display: inline-flex;
}

.msgr-popup .msger-inputArea .LeftButtons {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.msgr-popup .msger-inputArea .MessageInput {
  flex: 1 1 0;
  align-self: stretch;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
  padding-right: 4px;
  background: #17191c;
  border-radius: 20px;
  border: 1px #272a30 solid;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}

.msgr-popup .msger-inputArea .MessageInput .msger-input {
  background: #17191c;
  color: #747881;
  font-size: 16px;
  font-weight: 400;
  word-wrap: break-word;
}

.msgr-popup .msger-inputArea .MessageInput .ChatSmiley {
  width: 32px;
  height: 32px;
  position: relative;
}

.msgr-popup .msger-inputArea .msger-send-btn {
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  display: flex;
}

.msgr-popup .msger .msger-chat .msger-chat-area {
  opacity: 0;
  pointer-events: none;
  transition: all 300ms;
  position: absolute;
  width: 100%;
  height: 100%;
}

.msgr-popup .msger .msger-chat .msger-chat-area.active {
  opacity: 1;
  pointer-events: all;
  transition: all 300ms 300ms;
}

.msgr-popup .msger .msger-chat .msger-chat-area * {
  pointer-events: none;
}
.msgr-popup .msger .msger-chat .msger-chat-area.active * {
  pointer-events: all;
}

.msg-text p {
  margin-bottom: 32px;
}

.msg-text p:last-child {
  margin-bottom: 0;
}

#ChatMenuButton {
  cursor: pointer;
}

#ChatMenuButton * {
  cursor: pointer;
}

.pulse-animation {
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  animation: pulse-colored 1.5s infinite;
  -webkit-animation: pulse-colored 1.5s infinite;
}

@keyframes pulse-colored {
  0% {
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

@-webkit-keyframes pulse-colored {
  0% {
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.popup1 .popup_screen button {
  display: none;
}

.popup1 .popup_screen button.active {
  display: flex;
}

.RouletteWrapper {
  width: 405px;
  height: 246px;
  padding-bottom: 22.5px;
  gap: 32px;
  background-image: url("../images/ui/roulette/RouletteWrapper.png");
}

.RouletteOptions {
  width: 379px;
  height: 70px;
}

.RouletteButton100-50 {
  width: 100px;
  height: 50px;
}

.RouletteComponentMid {
  width: 405px;
  height: 130px;
  background: #1e90ff;
}

.RouletteComponentTop {
  width: 395px;
  height: 120px;
  padding-bottom: 120px;
  left: 5px;
  top: 5px;
  position: absolute;
  background: linear-gradient(
    90deg,
    #11b7fc 0%,
    #00eeff 21%,
    #00eeff 79%,
    #11b7fc 100%
  );
  box-shadow: 0px 0px 30px 8px rgba(0, 0, 0, 0.05) inset;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.centerMessage.p-0 {
  padding: 10px 10px !important;
  margin: 30px 0;
  border-radius: 4px;
}

.tileShadow {
  width: 97px;
  height: 96px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.tile {
  width: 80px;
  height: 80px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.tile .tileComponent {
  width: 60px;
  height: 60px;
  left: 10px;
  top: 10px;
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tile .tileComponent .tileQuantityContainer {
  width: 66px;
  padding-right: 4px;
  position: absolute;
  left: 0px;
  top: 40px;
}

.tile .tileComponent .tileQuantityContainer .X {
  text-align: right;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: lowercase;
  word-wrap: break-word;
  text-shadow: 0px 0.5px 2.54px rgba(0, 0, 0, 0.8),
    /* Converted box-shadow */ 0px 1px 0px #000000,
    /* Second part of the box-shadow */ 0px 0px 0.5px #3e3e3e; /* Stroke effect */
}

.tile .tileComponent .tileQuantityContainer .Qty {
  text-align: right;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  word-wrap: break-word;
  text-shadow: 0px 0.5px 2.54px rgba(0, 0, 0, 0.8),
    /* Converted box-shadow */ 0px 1px 0px #000000,
    /* Second part of the box-shadow */ 0px 0px 0.5px #3e3e3e; /* Stroke effect */
}

.roulette__prize {
  margin: 1px;
}

.preview__roulette .roulette {
  flex: 1 1 0;
  height: 70px;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  display: inline-flex;
}

.RouletteWrapperSvg {
  background-image: url("../svg/rouletteWrapperSvg.svg");
  width: 482px;
  height: 155px;
  padding-top: 45px;
  padding-bottom: 21px;
  padding-left: 25px;
  padding-right: 25px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.specialTileShadow {
  border-radius: 7px;
  box-shadow: 0px 0px 6px 2px #e4d124;
}

.Goldman {
  font-family: "Goldman Sans", sans-serif;
}

/* .earnedPrizePage .centerMessage {
  padding: 30px; gap: 32px;
} */

.rouletteContainer,
.earnedPrizePage {
  opacity: 0;
  pointer-events: none;
  transition: 300ms ease;
  height: 0;
}

.rouletteContainer.active,
.earnedPrizePage.active {
  opacity: 1;
  pointer-events: all;
  transition: 300ms ease;
  height: auto;
}

.increaseText {
  color: #00d958 !important;
  font-weight: var(--story-char-weight-2) !important;
}

.decreaseText {
  color: #d90000 !important;
  font-weight: var(--story-char-weight-2) !important;
}

.text-red {
  color: #ff0000 !important;
}

.bg-black {
  background-color: #060606;
}

.m-0 {
  margin: 0 !important;
}

.increaseText,
.decreaseText {
  font-size: 24px;
}

.random * {
  cursor: pointer;
}

.cursor-pointer-all * {
  cursor: pointer;
}

figure {
  margin-bottom: 32px;
}

.story-vid {
  margin-bottom: 32px;
}

.hexagon {
  -webkit-clip-path: polygon(
    75% 10%,
    100% 50%,
    75% 90%,
    25% 90%,
    0% 50%,
    25% 10%
  );
  clip-path: polygon(
    75% 10%,
    /* Top right */ 100% 50%,
    /* Right middle */ 75% 90%,
    /* Bottom right */ 25% 90%,
    /* Bottom left */ 0% 50%,
    /* Left middle */ 25% 10% /* Top left */
  );
}

.msg.center-msg {
  justify-content: center;
  margin: 30px 0;
}

.msg.center-msg .msg-bubble {
  border-radius: 2px;
}

.msg.center-msg .msg-bubble .msg-text {
  font-size: 14px;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #00ffc2;
}

/* .NotificationBadge {
  opacity: 0;
  transition: 300ms;
  pointer-events: none;
}

.NotificationBadge.active {
  opacity: 1;
} */

.msgr-popup * {
  image-rendering: auto;
}

#photo-swipers * {
  image-rendering: auto;
}

.current-label {
  opacity: 0;
  pointer-events: none;
}

.current-label.active {
  opacity: 1;
}

.storyButton {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-left: 32px;
}

.background-video-container {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #060606;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 300ms ease-in-out;
  z-index: var(--z-index-2);
  opacity: 0;
}

.background-video {
  height: 100%;
  width: auto;
}

.background-video-container.active {
  opacity: 1;
  transition: 300ms ease-in-out;
}

.card-selector {
  display: flex;
  gap: 10px;
  z-index: var(--z-index-2);
  justify-content: center;
  align-items: center;
}

.card-selector .card {
  width: 200px;
  height: 333px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s cubic-bezier(0.87, -1.38, 0.03, 1.5);
  filter: grayscale(100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: default;
}

.card-selector .card:hover {
  width: 333px;
  filter: grayscale(0%);
}

.leftBar {
  font-family: "Big Shoulder Display", sans-serif;
}

.progress {
  padding: 4px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25),
    0 1px rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25),
    0 1px rgba(255, 255, 255, 0.08);
  width: 80%;
}

.progress-bar {
  height: 16px;
  border-radius: 4px;
  background-image: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.05)
  );
  background-image: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.05)
  );
  background-image: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.05)
  );
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.05)
  );
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.1);
}

.progress > .progress-bar[data-value="0"] {
  width: 5%;
  background-color: #f63a0f;
}

.progress > .progress-bar[data-value="1"] {
  width: 25%;
  background-color: #f27011;
}

.progress > .progress-bar[data-value="2"] {
  width: 50%;
  background-color: #f2b01e;
}

.progress > .progress-bar[data-value="3"] {
  width: 75%;
  background-color: #f2d31b;
}

.progress > .progress-bar[data-value="4"] {
  width: 100%;
  background-color: #86e01e;
}

.feature {
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  display: flex;
}

.roomFeatureSvg {
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.featureDesc {
  color: white;
  font-size: 15.77px;
  font-weight: 600;
  word-wrap: break-word;
}

.npcContent {
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  display: inline-flex;
}

.Content {
  align-self: stretch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  word-wrap: break-word;
}

.TitleAndOwner {
  align-self: stretch;
  padding-right: 90px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Title {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1px;
  display: flex;
  align-self: stretch;
  color: white;
  font-size: 20px;
  font-weight: 400;
  word-wrap: break-word;
}

.residence {
  color: #ffdd2b;
  font-size: 50px;
  font-weight: 700;
  word-wrap: break-word;
}

.Owner {
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  display: flex;
}

.OwnerPic {
  width: 30px;
  height: 30px;
  border-radius: 9999px;
}

.OwnerName {
  color: black;
  font-size: 16px;
  font-weight: 600;
  word-wrap: break-word;
}

.Details {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 42px;
  display: flex;
}

.PicAndFeatures {
  align-self: stretch;
  justify-content: center;
  align-items: flex-end;
  gap: 72px;
  display: flex;
}

.ResidencePic {
  width: 280px;
  height: 250px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.FeaturesAddressAndPrice {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 21px;
  display: flex;
}

.AddressAndPriceValue {
  align-self: stretch;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.Address {
  color: white;
  font-size: 18px;
  font-weight: 600;
  word-wrap: break-word;
}

.PriceValue {
  position: relative;
  width: 229px;
  height: 45px;
}

.Rectangle4 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffdd2b;
  box-shadow: 10px 10px 25px rgba(255, 221, 42, 0.4);
  border-radius: 0 30px 30px 0;
}

#View-Area .Level {
  position: absolute;
  left: 34px;
  top: 9px;
  color: black;
  font-size: 20px;
  font-weight: 600;
  word-wrap: break-word;
}

.Features {
  align-self: stretch;
  padding: 25px 50px;
  background: rgba(84, 84, 84, 0.42);
  border-radius: 17.53px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  display: flex;
}

.Features.Building {
  flex-direction: row;
  row-gap: 18px;
  column-gap: 50px;
  flex-wrap: wrap;
}

.FeatureItem {
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  display: flex;
  min-width: 170px;
  max-width: 170px;
  width: 170px;
}

.FeatureText {
  color: white;
  font-size: 15.77px;
  font-weight: 600;
  word-wrap: break-word;
}

.ButtonsAndOverview {
  align-self: stretch;
  padding-right: 90px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 21px;
  display: flex;
}

.OverviewTabs {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 65px;
  display: flex;
}

.contentTab {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  word-wrap: break-word;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  height: 0;
  position: absolute;
}

.contentTab.active {
  opacity: 1;
  pointer-events: all;
  height: auto;
  position: relative;
}

.availableActionsContent {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.underlineOnHover {
  transition: 0.5s;
}

.underlineOnHover:hover {
  text-decoration: underline;
  transition: 0.5s;
}

.roomBox .Occupants {
  padding: 8px;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
  flex-wrap: wrap;
}

.roomBox .Heading {
  width: fit-content;
  color: white;
  font-size: 19px;
  font-weight: 500;
}

.cursor-default-all {
  cursor: default;
}

.cursor-default-all * {
  cursor: default;
}

.traversedLink {
  color: #5beb9c;
}

.inline-icon {
  width: 25px;
  height: 25px;
  display: inline-block;
}

/* .Typewriter__wrapper a:not(:last-of-type) {
  display: block;
  margin-bottom: 32px;
} */

.Typewriter__wrapper p {
  display: block;
  margin-bottom: 32px;
}

.text-2xl-new {
  font-size: 24px;
  line-height: 32px;
}

.mb-12-new {
  margin-bottom: 48px;
}

.mb-24-new {
  margin-bottom: 96px;
}

.gap-x-8-new {
  row-gap: 48px;
}
.gap-y-12-new {
  column-gap: 32px;
}

.text-xl-new {
  font-size: 20px;
  line-height: 28px;
}

.text-sm-new {
  font-size: 13px;
  line-height: 16px;
}
.pr-6-new {
  padding-right: 24px;
}

.saveImg {
  width: 280px;
  height: 280px;
}
.h-8-new {
  height: 32px;
}
.w-8-new {
  height: 32px;
}
.mb-3-new {
  margin-bottom: 12px;
}

.saveBox {
  height: 280px;
  width: 280px;
}

.emptySave {
  width: 234px;
  height: 234px;
}

.mb-4-new {
  margin-bottom: 16px;
}

.right-2-new {
  right: 8px;
}

.top-2-new {
  top: 8px;
}
.mt-8-new {
  margin-top: 36px;
}

.text-lg-new {
  font-size: 20.25px;
  line-height: 20.25px;
}
.gap-2-new {
  gap: 9px;
}
/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"); */
/* Variables */
:root {
  --checkbox-primary-color: var(--primary-clr);
  --checkbox-text-color-rest: rgba(255, 255, 255, 0.7);
  --checkbox-text-color-active: rgba(255, 255, 255, 1);
  --checkbox-ripple-color: rgba(255, 108, 100, 0.3);
  --checkbox-spacing-sm: 0.75rem;
  --checkbox-transition-duration: 0.25s;
  --checkbox-transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
  --checkbox-control-size: 24px;
  --checkbox-control-border: 2px;
  --checkbox-focus-ring-size: 4px;
  --checkbox-ripple-size: 44px;
  --checkbox-checkmark-width: 6px;
  --checkbox-checkmark-height: 12px;
  --radio-dot-size: 12px;
}

.perfectCheckbox .checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.perfectCheckbox .checkbox-control {
  position: relative;
  width: var(--checkbox-control-size);
  height: var(--checkbox-control-size);
  min-width: var(--checkbox-control-size);
  min-height: var(--checkbox-control-size);
  border: var(--checkbox-control-border) solid var(--checkbox-primary-color);
  transition: all var(--checkbox-transition-duration)
    var(--checkbox-transition-timing);
}

.perfectCheckbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--checkbox-spacing-sm);
  cursor: pointer;
}
.perfectCheckbox .checkbox-control {
  border-radius: 6px;
}
.perfectCheckbox .checkbox-control::before,
.perfectCheckbox .checkbox-control::after {
  content: "";
  position: absolute;
  transition: transform var(--checkbox-transition-duration)
      var(--checkbox-transition-timing),
    opacity var(--checkbox-transition-duration)
      var(--checkbox-transition-timing);
  will-change: transform, opacity;
}
.perfectCheckbox .checkbox-control::before {
  top: 50%;
  left: 50%;
  width: var(--checkbox-ripple-size);
  height: var(--checkbox-ripple-size);
  background-color: var(--checkbox-ripple-color);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.perfectCheckbox .checkbox-control::after {
  left: 50%;
  top: 45%;
  width: var(--checkbox-checkmark-width);
  height: var(--checkbox-checkmark-height);
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
}
.perfectCheckbox .checkbox-input:checked ~ .checkbox-control {
  background-color: var(--checkbox-primary-color);
  border-color: var(--checkbox-primary-color);
}
.perfectCheckbox .checkbox-input:checked ~ .checkbox-control::before {
  animation: ripple 240ms linear;
}
.perfectCheckbox .checkbox-input:checked ~ .checkbox-control::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
  opacity: 1;
}
.perfectCheckbox .checkbox-input:focus-visible ~ .checkbox-control {
  box-shadow: 0 0 0 var(--checkbox-focus-ring-size) rgba(100, 108, 255, 0.3);
}
.perfectCheckbox .checkbox-label {
  font-size: 1rem;
  user-select: none;
  color: var(--checkbox-text-color-rest);
  transition: color var(--checkbox-transition-duration)
    var(--checkbox-transition-timing);
}
.perfectCheckbox .checkbox-input:checked ~ .checkbox-label {
  color: var(--checkbox-text-color-active);
  animation: label-check 0.3s var(--checkbox-transition-timing);
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.35);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@keyframes label-check {
  0% {
    transform: translateX(0);
    opacity: 0.7;
  }
  40% {
    transform: translateX(2px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.preferences-label {
  width: 150px;
}

.preferences-area-hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: 300ms;
}

.preferences-area-hidden.active {
  height: auto;
  opacity: 1;
  pointer-events: all;
}

.h-screen {
  height: var(--screenHeight);
}

@keyframes starScale {
  0%,
  100% {
    transform: rotate(0) scale(0);
    opacity: 0;
  }
  50% {
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
}

.magic-star {
  position: absolute;
  animation: starScale 800ms ease infinite;
}

.magic {
  position: relative;
  display: inline-block;
}

.magic span {
  position: relative;
  z-index: 1;
}

.magic .magic-star {
  --star-left: 0%;
  --star-top: 0%;
  width: var(--size, 20px);
  height: var(--size, 20px);
  top: var(--star-top);
  left: var(--star-left);
}

.premium-color {
  color: #ffdd2a;
}

.key-bindings {
  display: table;
  width: 100%;
  max-width: 800px;
  overflow-y: auto;
}

.keyboard-guide-row {
  display: table-row;
}

.keyboard-guide-column {
  display: table-cell;
  padding: 5px 10px;
  vertical-align: middle;
}

.keyboard-guide-spacer {
  height: 10px;
  display: table-row;
}

.keyboard-guide-bold {
  font-weight: 500;
  white-space: nowrap;
}
